#. Import the wwe csv file

Now perform the following tasks on the imported dataset.

1. Delete the following columns: City, Champion,Runner-up,Salary&Weight

2. Delete the following rows: 2nd to 5th, 10th, 13, 15th to 18th & 21st

3. Filter all the matches where John Cena was champion

4. Show all the data where CM Punk was runners-up and champion was Edge

5. Show the data where neither John Cena nor CM Punk was champion

6. Show all the data where salary is more than 500 & height less than 100 and title is World Heavyweight Championship

 
7. Show all data where city is Kansas City; show only City and Title column

8. Except the following show the rest: Title : World Heavyweight Championship
 or Champion: John Cena or height > 100

9. Create a data frame named a where salary > 300 or runners-up is Alberto Del Rio. Show only championship, runners-up and title columns in the said order.

10. Create a data frame named a where city is Phoenix. Show only championship, title, and runners-upcolumns in the said order.

11. append a and b and name it "ken_shemrock" using append and concat function.


